home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue71
/
Construc
/
HELLO.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-01
|
249 b
|
11 lines
program hello;
{$APPTYPE CONSOLE}
begin
writeln('content-type: text/html');
writeln;
writeln('<html>');
writeln('<body bgcolor=ffffcc>');
writeln('<h1>Made in Kylix Desktop!</h1>');
writeln('</body>');
writeln('</html>')
end.